home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / vg-2.03 / video / io.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-03  |  658 b   |  26 lines

  1. /*
  2.  * Copyright (C) 1990-1992 Michael Davidson.
  3.  * All rights reserved.
  4.  *
  5.  * Permission to use, copy, modify, and distribute this software
  6.  * and its documentation for any purpose and without fee is hereby
  7.  * granted, provided that the above copyright notice appear in all
  8.  * copies and that both that copyright notice and this permission
  9.  * notice appear in supporting documentation.
  10.  *
  11.  * This software is provided "as is" without express or implied warranty.
  12.  */
  13.  
  14. #ifndef    IO_H
  15. #define    IO_H
  16.  
  17. byte_t    inb(word_t);
  18. word_t    inw(word_t);
  19. dword_t    ind(word_t);
  20.  
  21. void    outb(word_t, byte_t);
  22. void    outw(word_t, word_t);
  23. void    outd(word_t, dword_t);
  24.  
  25. #endif    /* IO_H */
  26.